home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xalan.jar / org / apache / xalan / xpath / DOMXPath.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-04-12  |  857 b   |  16 lines

  1. package org.apache.xalan.xpath;
  2.  
  3. import org.apache.xalan.xpath.xml.ProblemListenerDefault;
  4.  
  5. class DOMXPath extends XPath {
  6.    private static final ProblemListenerDefault m_problemListener = new ProblemListenerDefault();
  7.  
  8.    public DOMXPath() {
  9.       super(m_problemListener);
  10.    }
  11.  
  12.    public XLocator createXLocatorHandler(XPath var1) {
  13.       return new SimpleNodeLocator();
  14.    }
  15. }
  16.